
:root {
    --red-color: #C41230;
    --black-color: #0B0B0B;
    --grey-color: #242424;
}

.site-container {
	max-width: 1300px;
	margin: auto;
	display: block;
    padding: 0 15px;
}

.container1600 {
    max-width: 1600px;
    display: block;
    margin: auto;
}
.container1500 {
    max-width: 1500px;
    display: block;
    margin: auto;
}
.container1400 {
    max-width: 1400px;
    display: block;
    margin: auto;
}
.container1300 {
    max-width: 1300px;
    display: block;
    margin: auto;
}
.container1200 {
    max-width: 1200px;
    display: block;
    margin: auto;
}
.container1100 {
    max-width: 1100px;
    display: block;
    margin: auto;
}
.container1000 {
    max-width: 1000px;
    display: block;
    margin: auto;
}
.container800 {
    max-width: 800px;
    display: block;
    margin: auto;
}
.container600 {
    max-width: 600px;
    display: block;
    margin: auto;
}

.video-wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	margin-bottom: 10px
}
.video-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}

.video-wrapper.shorts {
    position: relative;
    padding-bottom: 177.78%; 
    height: 0;
    margin-bottom: 10px;
    max-width: 400px; 
}
.video-wrapper.shorts iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.video-wrapper-shorts {
    /*aspect-ratio: 16 / 9;*/
    aspect-ratio: 9 / 16;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
}

.video-wrapper-shorts iframe {
    width: 100%;
    height: 100%;
}


.youtube-play-button {
    cursor: pointer;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.youtube-play-button img{
    width: 100%;
    height: auto;
}
.youtube-play-button .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
    position: absolute;
}
.youtube-play-button:hover .play-button{
    background-color: #d02f38;
}
.youtube-play-button .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
    border-width: 8px 0 8px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
}
.video-container-box {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container-box .youtube-play-button {
    position: initial;
}
.video-youtube-box {
    position: relative;
}
.video-youtube-box img{
    margin: 0; 
    width: 100%;
    height: auto;
    float: left;
}
.video-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*for youtube short videos*/
.video-container-shorts {
    aspect-ratio: 9 / 16;
    width: 100%;
}
.youtube-shorts-button {
    aspect-ratio: 9 / 16;
    width: 100%;
}
.youtube-shorts-button img {
    height: 100%;
    width: auto;
    max-width: initial;
    translate: -35%;
    float: none;
    cursor: pointer;
}
.youtube-shorts-button .play-button {
    width: 90px;
    height: 60px;
    background-color: #333;
    box-shadow: 0 0 30px rgba( 0, 0, 0, 0.6);
    z-index: 1;
    opacity: 0.8;
    border-radius: 6px;
    cursor: pointer;
    top: 25%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
    position: absolute;
}
.youtube-shorts-button:hover .play-button{
    background-color: #d02f38;
}
.youtube-shorts-button .play-button:before {
    content: "";
    border-style: solid;
    border-width: 15px 0 15px 26.0px;
    border-color: transparent transparent transparent #fff;
    border-width: 8px 0 8px 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d( -50%, -50%, 0);
}
.shorts-iframe-container {
    aspect-ratio: 9 / 16;
    width: 100%;
}
.shorts-iframe-container iframe {
    width: 100%;
    height: 100%;
}


.video-half,
.half-video {
    display: inline-block;
    width: 50%;
    float: left;
    padding-right: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.img-half,
.image-half,
.half-img,
.half-image {
    display: inline-block;
    width: 50%;
    float: left;
    padding-right: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.img-half.image-right,
.image-half.image-right,
.half-img.image-right,
.half-image.image-right,
.img-half.img-right,
.image-half.img-right,
.half-img.img-right,
.half-image.img-right {
    float: right;
    padding: 0;
    margin: 0;
    padding-left: 15px;
    margin-left: 15px;
    margin-bottom: 5px;
}

img {
    max-width: 100%;
    height: auto;
}

.bold {
    font-weight: bold;
}
.center{
    text-align: center;
}           

a {
    color: var(--red-color);
}
a:hover {
    color: var(--white-color);
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background: var(--black-color);
    color: #f2f2f2;
    overflow-x: hidden;
}
h1 {
    font-size: 50px;
    line-height: 1.4;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    margin: 30px 0;
    text-align: center;
}
h2 {
    font-size: 40px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    margin: 25px 0;
    /*text-align: center;*/
}
h3 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    margin: 20px 0;
    /*text-align: center;*/
}
h4 {
    font-size: 23px;
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    margin: 15px 0;
}

body.privacy-policy-page h2,
body.terms-conditions-page h2,
body.disclaimer-page h2 {
    font-size: 35px;
}

p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 15px;
}
li {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 5px;
}

ul, ol {
    margin-bottom: 15px;
    display: flow-root;
}
ul.two li{
	width: 50%;
	float: left;
	padding-right: 20px;
}
ul.three {
    display: inline-block;
    width: 100%;
}
ul.three li{
	width: 33%;
	float: left;
	padding-right: 20px;
}
ul.four {
    display: inline-block;
    width: 100%;
}
ul.four li{
	width: 25%;
	float: left;
	padding-right: 20px;
}

p.big {
    font-size: 22px;
}
.red {
    color: #91051c;
}

.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb50 {
    margin-bottom: 50px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt50 {
    margin-top: 50px;
}

.center-buttons,
.buttons-center {
    display: flow-root;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 20px;
}
.center-buttons a,
.buttons-center a {
    display: inline-block;
    margin: 0 10px 10px;
    background: var(--red-color);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    padding: 10px 20px;
    border: 0;
    cursor: pointer;
}
.center-buttons a:hover,
.buttons-center a:hover {
	text-decoration: none;
    background: #91051c;
    color: #fff;
}
.default-btn,
.default-button {
    background: var(--red-color);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 10px 0;
    display: inline-block;
    padding: 10px 20px;
    border: 0;
}
.default-btn:hover,
.default-button:hover,
.default-button:focus {
    text-decoration: none;
    background: #91051c;
    color: #fff;
}

.text-section {
    padding: 50px 0;
}
.default-text ul,
.text-section ul {
    padding-left: 0px;
}
.default-text ul li,
.text-section ul li {
    /*background: url(../images/list-icon-white.png);*/
    background: url(../images/list-icon-ball.png);
    background-size: 18px;
    background-position: 0 5px;
    background-repeat: no-repeat;
    list-style: none;
    padding-left: 30px;
}
ul.list-icon {
    padding-left: 0;
}
ul.list-icon li {
    background: url(../images/list-icon-ball.png);
    background-size: 18px;
    background-position: 0 5px;
    background-repeat: no-repeat;
    list-style: none;
    padding-left: 30px;
}

ul.icons-list {

}
ul.icons-list li {
    list-style: none;
    background: no-repeat;
    padding: 0;
    margin-bottom: 20px;
}
ul.icons-list li img {
    width: 30px;
    margin-right: 10px;
}

.row.flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}

.row .flex {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
}

.red-bg {
    background: var(--red-color);
}
.red-bg .default-button {
    background: var(--black-color);
}
.red-bg .default-button:hover {
    background: var(--grey-color);
}

.text-section.red-bg {
    width: 100vw;
    margin: 30px 0;
    padding: 50px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.center {
    text-align: center;
}
.left,
.align-left,
.left-align {
    text-align: left;
}
.right,
.align-right,
.right-align {
    text-align: right;
}
img.full {
    width: 100%;
    height: auto;
}

.default-text {
    padding-bottom: 100px;
    min-height: 300px;
}


* {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: hsl(0deg 0% 0% / 80%);
    z-index: 99;
}
header {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    text-align: center;
}
header .logo {
    max-width: 200px;
    float: left;
    display: inline-block;
}
header .logo img{
    width: 100%;
    height: auto;
}
header .right {
    display: inline-block;
    float: right;
    text-align: right;
}
header .phone {
    display: inline-block;
    margin-right: 30px;
}
header .phone a {
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}
header .phone a i {
    font-size: 16px;
}
header .phone a:hover {
    color: var(--red-color);
    text-decoration: none;
}
header .open-menu {
    display: inline-block;
    font-size: 30px;
    margin-top: 5px;
    cursor: pointer;
}
header .menu .close-menu {
    display: inline-block;
    cursor: pointer;
    line-height: 1;
    margin-bottom: 10px;
}
header .menu .close-menu i {
    color: #bbb;
    font-weight: 700;
    padding: 5px;
    font-size: 16px;
    margin-left: -15px;
}
header .menu {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    background: var(--red-color);
    z-index: 999;
    margin: 0;
    padding-left: 20px;
    width: 250px;
    text-align: left;
}
header .menu a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    color: #fff;
    padding: 5px;
    margin-bottom: 10px;
    position: relative;
    /*text-transform: uppercase;*/
}
header .menu a:last-child {
    padding-right: 0;
}
header .menu a:active,
header .menu a:hover {
    color: var(--black-color);
    text-decoration: none;
}

header .search-menu form {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
header .search-menu form input {
    display: inline-block;
    width: calc(100% - 40px);
    float: left;
    border: 0;
    height: 40px;
    padding: 10px;
    font-size: 17px;
    border-radius: 0;
}
header .search-menu form button {
    display: inline-block;
    background: var(--black-color);
    color: #fff;
    float: left;
    font-size: 16px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    margin: 0;
    padding: 0;
    border: 0;
}
header .search-menu form button:hover {
    background: #454545;
}




footer {
    background: var(--black-color);
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
footer * {
    color: #fff;
} 
footer .newsletter h4 {
    margin: 15px 0;
}
footer .newsletter form {
    margin-bottom: 20px;
}
footer .newsletter input {
    width: 250px;
    display: inline-block;
    height: 45px;
    border-radius: 0;
    padding: 10px;
    font-size: 17px;
    border: 0;
}
footer .newsletter button {
    margin: 0;
    height: 45px;
    font-size: 16px;
}
footer .newsletter button:hover {
    background: #002184;
}
footer .links {
    margin: 0;
}
footer .links a {
    display: inline-block;
    font-size: 16px;
    padding: 5px;
    margin: 5px;
}
footer .links a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .locations {
    line-height: 2;
    margin: 10px auto 20px;
    max-width: 1200px;
}
footer .locations a:hover {
    color: #fff;
    text-decoration: underline;
}
footer .socials a {
    display: inline-block;
    margin: 10px;
    padding: 5px;
    font-size: 25px;
}
footer .socials a:hover i {
    color: #ca072c;
}
footer p.copyright {
    margin: 10px 0;
    font-size: 16px;
}


body.homepage {
    padding-top: 0;
}
body.homepage header .open-menu {
    color: #fff;
}

body.homepage header {
    background: transparent;
}
body.homepage header.scrolled {
    background: var(--black-color);
}


.home-top-video {
    position: relative;
    background-size: cover;
    overflow: hidden;
    text-align: center;
}
.home-top-video .video-hp {
    background: var(--black-color);
    margin-bottom: -10px;
}
.home-top-video .video-hp video {
    width: auto;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
}
.home-top-video .overlay {
    background: rgb(0 0 0 / 40%);
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;

    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;

}
.home-top-video .site-container {
    z-index: 9;
    position: relative;
}
.home-top-video .text {
    padding-top: 50px;
}
.home-top-video .text .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.home-top-video .text h1 {
    text-align: center;
    margin: 30px 0;
    font-size: 40px;
    letter-spacing: 1px;
    font-weight: 400;
}
.home-top-video .text h1 span {
    font-size: 120px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
    display: block;
}
.home-top-video .text p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 30px;
}
.home-top-video .text p.big {
    font-size: 22px;
    max-width: 1000px;
}
.home-top-video .text a.default-button {
    margin: 10px;
}

.youtube-shorts .item {
    margin-bottom: 20px;
}

.numbers {
    display: inline-block;
    width: 100%;
    background: var(--red-color);
    padding: 30px 0;
}
.numbers .col {
    text-align: center;
    margin: 40px 0;
}
.numbers .col .no {
    font-size: 60px;
    line-height: 1;
    font-family: 'Oswald', sans-serif;
}
.numbers .col .desc {
    margin: 0;
    line-height: 1.5;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
}


.programs {
    padding: 50px 0;
}
.programs .line {
    display: inline-block;
    width: 100%;
    margin: 15px 0;
    background: #fff;
    color: #000;
}
.programs .image {
    width: 40%;
    float: left;
}
.programs .image img {
    width: 100%;
    height: auto;
}
.programs .text {
    display: inline-block;
    width: 60%;
    float: left;
}
.programs .text .box {
    padding: 30px;
}
.programs .text h3 {
    text-align: left;
    margin-top: 0px;
}
.programs .text p {

}
.programs .text a.more {
    font-weight: bold;
    font-size: 20px;
}


.home-hero {
    text-align: center;
}
.home-hero h1 {
    font-weight: 400;
}

.hp-logos {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}
.hp-logos .flex {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
}
.hp-logos .item {
    display: inline-block;
    margin: 30px;
}
.hp-logos .item img {
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 250px;
}

/*.hp-sponsors {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.hp-sponsors .slider-sponsors {
    position: relative;
}
.hp-sponsors .flex-direction-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
}
.hp-sponsors .flex-direction-nav i {
    font-size: 30px;
    padding: 10px;
}
.hp-sponsors .flex-direction-nav .flex-prev {
    float: left;
}
.hp-sponsors .flex-direction-nav .flex-next {
    float: right;
}
.hp-sponsors .owl-carousel {
    max-width: 90%;
    margin: auto;
}
.hp-sponsors .owl-carousel .owl-stage {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.hp-sponsors .owl-carousel .item {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.hp-sponsors .owl-carousel .item img {
    width: auto;
    height: auto;
    max-height: 120px;
    max-width: 100%;
}*/


/*.hp-partners {
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}
.hp-partners .slider-partners {
    position: relative;
}
.hp-partners .flex-direction-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
}
.hp-partners .flex-direction-nav i {
    font-size: 30px;
    padding: 10px;
}
.hp-partners .flex-direction-nav .flex-prev {
    float: left;
    margin-left: -15px;
}
.hp-partners .flex-direction-nav .flex-next {
    float: right;
    margin-right: -15px;
}
.hp-partners .owl-carousel {
    max-width: 94%;
    margin: auto;
}
.hp-partners .item {
    text-align: center;
}
.hp-partners .item p.title {
    text-align: center;
    margin: 10px 0;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}*/



/*about page*/

.mission-vision {
    background: var(--red-color);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}
.mission-vision ul li {
    background-image: url(../images/list-icon-white.png);
}


.coaches {
    display: inline-block;
    width: 100%;
}
.coaches .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.coaches .item {
    margin-bottom: 50px;
}
.coaches .item .image {
/*    margin-bottom: 10px;*/
}
.coaches .item .image img {
    width: 100%;
    height: auto;
}
.coaches .item h4 {
    font-size: 25px;
    margin: 15px 0;
    display: block;
}
.coaches .item p {
    font-size: 16px;
    line-height: 1.5;
}
.coaches .item a.read-more {
    font-size: 18px;
    font-weight: bold;
    text-decoration: underline;
}
.coaches .item a.read-more:hover {
    text-decoration: none;
}


.inline-logos {
    display: inline-block;
    width: 100%;
    padding: 50px 0;
}
.inline-logos .flex {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
}
.inline-logos .item {
    display: inline-block;
    margin: 30px;
}
.inline-logos .item img {
    width: auto;
    height: auto;
    max-height: 80px;
    max-width: 250px;
}


/*teams page*/
.teams .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}
.teams .item {
    margin: 20px 0;
    display: flex;
}
.teams .box {
    /*border: 1px solid var(--red-color);*/
    background: var(--grey-color);
    padding: 25px;
}
.teams .item h2 {
    color: var(--red-color);
    font-size: 30px;
    margin: 0px 0 20px;
}


/*contact page*/

.contact-form {
    margin-top: 30px;
    display: inline-block;
    width: 100%;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    font-size: 16px;
    font-weight: 500;
}
.contact-form label.error {
    color: red;
    font-size: 16px;
}
.contact-form select,
.contact-form input {
    height: 50px;
    padding: 10px;
    font-size: 18px;
    border-radius: 0;
}
.contact-form input[type="checkbox"] {
    width: 16px;
    height: 16px;
    float: left;
    margin-right: 10px;
}
.contact-form input[type="file"] {
    border: 1px solid #696969;
} 
.contact-form textarea {
    height: auto;
    min-height: 150px;
    padding: 10px;
    font-size: 18px;
    line-height: 1.5;
    border-radius: 0;
}
.contact-form button {
    font-size: 16px;
    margin-top: 0;
}
.contact-text {
    text-align: center;
}

.checkboxes .checkbox {
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}
.checkboxes .checkbox label {
    padding-left: 25px;
}
.checkboxes .checkbox label input {
    margin-left: -25px;
}


/*schedule page*/

.schedule-table table tr th {
    padding: 10px;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}
.schedule-table table tr td {
    padding: 10px;
    font-size: 18px;
    line-height: 1.7;
    text-align: center;
}


/*sitemap*/
.sitemap .links {
    display: inline-block;
    width: 100%;
}
.sitemap .links a {
    display: inline-block;
    width: 33.33%;
    float: left;
    padding: 5px;
    margin: 10px 0;
    font-size: 18px;
}



/*pricing*/

.pricing {
    display: inline-block;
    width: 100%;
    text-align: center;

    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.pricing .item {
    display: inline-block;
    margin: 20px;
}
.pricing .item .box {
    padding: 20px;
    width: 380px;
    height: 100%;
    text-align: center;
    background: #e6e6e6;
    color: #000;
}
.pricing .item .box .type {
    font-size: 28px;
    font-weight: 600;
}
.pricing .item.boys .box .type {
    color: var(--red-color);
}
.pricing .item .box .price {
    font-weight: bold;
    font-size: 26px;
}
.pricing .item .box .price span {
    font-size: 20px;
    font-weight: 400;
}
.pricing .item .box ul {
    text-align: left;
}
.pricing .item.scholarship .box .type {
    color: #26b924;
}


/*faqs page*/

.general-accordion .panel-default {
    margin-bottom: 20px;
    background: none;
    border: 1px solid var(--red-color);
}
.general-accordion .panel-heading {
    padding: 0;
    background: none;
    border: none;
}
.general-accordion .panel-heading h4 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
}
.general-accordion .panel-heading h4 a {
    font-size: 20px;
    line-height: 1.5;
    padding: 10px 15px;
    display: block;
    background: #91051c;
    color: #fff;
    display: inline-block;
    width: 100%;
}
.general-accordion .panel-heading h4 a i {
    float: right;
    margin-top: 3px;
    font-size: 18px;
}
.general-accordion .panel-heading h4 a.collapsed {
    background: var(--red-color);
}
.general-accordion .panel-heading h4 a:hover,
.general-accordion .panel-heading h4 a:focus {
    background: #91051c;
    text-decoration: none;
}
.general-accordion .panel-heading h4 a.collapsed i {
    transform: rotate(180deg);
}
.general-accordion .panel-body {
    border: 0!important;
}
.faqs-accordion {
    max-width: 1000px;
    margin: auto;
}



/*camps page*/

.camps {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}
.camps .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
    justify-content: center;
}
.camps .item {
    margin-bottom: 30px;
}
.camps .item .box {
    border: 1px solid #2d2d2d;
    border-radius: 10px;
    overflow: hidden;
}
.camps .item .image img {
    width: 100%;
    height: auto;
}
.camps .item .text {
    padding: 20px;
}
.camps .item .title {
    font-weight: bold;
    font-size: 20px;
    line-height: 1.5;
}
.camps .item .full-booked {
    color: #ca072c;
    margin: 45px 0;
}
.camps .item .spots {
    font-style: italic;
}
.camps .item form {
    display: inline-block;
    margin-right: 20px;
}
.camps .item form button {
    margin: 0;
    font-size: 16px;
    line-height: 1.2;
}
.camps .item a.read-more {
    font-size: 16px;
    text-transform: capitalize;
    text-decoration: underline;
}
.camps .item a.read-more:hover {
    text-decoration: none;
}

.camp-inner .full-booked {
    color: #ca072c;
}
.register-text h4 {
    font-size: 22px;
    margin: 15px 0;
}



/*partners page*/

.partners {
    display: inline-block;
    width: 100%;
}
.partners .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;

}
.partners .item {
    margin-bottom: 50px;
    text-align: center;
}
.partners .item img {
    display: block;
    margin: auto;
    width: auto;
    max-width: 300px;
    max-height: 130px;
    height: auto;
}
.partners .item:hover img {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    transform: scale(1.08);
}





/*search page*/
.search-content {
    padding-bottom: 50px;
}
.search-content {
    display: block;
    margin: auto;
    max-width: 1000px;
}
.search-results .result {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #464646;
}   
.search-results .result:last-child {
    border: 0;
}
.search-results .result .text p{
    margin-bottom: 0;
    font-size: 17px;
}
.search-results .result .text a.title{
    font-size: 20px;
    font-weight: 500;
    display: block;
    clear: both;
    margin-bottom: 5px;
}


.error-404 {
    max-width: 500px;
    margin: auto;
}
.error-404 form {
    display: inline-block;
    width: 100%;
}
.error-404 form input {
    display: inline-block;
    width: calc(100% - 100px);
    float: left;
    border: 1px solid #ca072c;
    height: 50px;
    padding: 10px;
    font-size: 18px;
    border-radius: 0;
}
.error-404 form button {
    display: inline-block;
    float: left;
    width: 100px;
    font-size: 17px;
    height: 50px;
    text-align: center;
    padding: 5px;
    margin: 0;
}



.default-page {
    min-height: 300px;
    padding-bottom: 50px;
}



/*waiver page*/

.digital-signature {
    margin: 30px 0;
}
.digital-signature #sig-canvas {
    border: 2px dotted #ccc;
    border-radius: 15px;
    cursor: crosshair;
    max-width: 100%;
    height: 160px;
    background: #fff;
}
.digital-signature img#sig-image {
    border: 1px solid green;
    margin-top: 15px;
}



/*trophies page*/

.trophies .row {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.trophies .item {
    margin-bottom: 40px;
}
.trophies .item h4 {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
}


.social-media-reviews {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.social-media-reviews .item {
    display: inline-block;
    margin: 25px;
}
.social-media-reviews .item img {
    max-height: 80px;
    width: auto;
}



/*testings page*/

.testings .line-heading {
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #bbb;
    padding: 10px 0;
}
.testings .line-heading div {
    display: inline-block;
    width: 10.5%;
    font-size: 16px;
    font-weight: 500;
    float: left;
    text-align: center;
}
.testings .line-heading div:first-child {
    width: 16%;
    text-align: left;
}
.testings .item {
    border-bottom: 1px solid #bbb;
}
.testings .item .line {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
}
.testings .item .line div {
    display: inline-block;
    width: 10.5%;
    font-size: 15px;
    float: left;
    text-align: center;
}
.testings .item .line div:first-child {
    width: 16%;
    text-align: left;
}
.testings .item .line div.name {
    font-weight: bold;
    font-size: 17px;
}
.testings .item .line div.name span {
    font-weight: normal;
    font-size: 15px;
    color: #6e6e6e;
    cursor: pointer;
}
.testings .item .line div span.show-mobile {
    display: none;
}

.testings .testings-history h4 {
    font-size: 16px;
}
.testings .testings-history .item {
    border-bottom: 1px solid #eee;
}


/*coach profile page*/
.coach-profile .top {
    display: inline-block;
    width: 100%;
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
    margin-bottom: 50px;
}
.coach-profile .top .img-profile {
    width: 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 50%;
    float: left;
    margin-right: 25px;
}
.coach-profile .top h4 {
    font-size: 25px;
    margin: 20px 0;
}
.coach-profile .top p {
    font-size: 20px;
}
.coach-profile .top p i {
    font-size: 18px;
}


/*verification page*/
.team-links {
    margin-bottom: 30px;
}
.team-links a {
    display: inline-block;
    margin: 10px;
}
.team-links a.active {
    font-weight: bold;
    text-decoration: underline;
}

.form-login {
    max-width: 350px;
    margin: auto;
}
.login-form .input-group {
    display: block;
}
.login-form label {
    font-size: 18px;
    margin: 10px 0;
}
.login-form input {
    padding: 10px;
    height: auto;
    font-size: 18px;
}


/*blog page*/
h1.blog-title {
    font-size: 45px;
}
.blog-article {
    padding-top: 20px;
}
.blog-article .half-img img {
    margin-top: 8px;
}
.blog-article .infos p {
    text-align: center;
    margin: 30px 0;
    font-style: italic;
}
.blogs .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
    /*justify-content: center;*/
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.blogs .item {
    margin-bottom: 50px;
}
.blogs .item .image {
    overflow: hidden;
}
.blogs .item .image img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.blogs .item:hover .image img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.blogs .item .title {
    line-height: 1.5;
    margin: 12px 0;
    font-size: 22px;
}
.blogs .item a:hover {
    text-decoration: none;
}

.page-navigation {
    text-align: center;
}
.page-navigation a {
    margin: 10px;
    display: inline-block;
    padding: 10px;
    line-height: 1;
    font-size: 17px;
}
.page-navigation a.active {
    background: var(--red-color);
    color: #fff;
    border-radius: 5px;
    font-weight: bold;
}
.page-navigation a.arrow-left {
    float: left;
    margin-left: 0;
    padding-left: 0;
}
.page-navigation a.arrow-right {
    float: right;
    margin-right: 0;
    padding-right: 0;
}


/*news page*/
.news .flex {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
}
.news .item {
    margin: 20px 0;
    text-align: center;
}
.news .item .box {
    /*border: 1px solid #ddd;*/
    /*padding: 15px;*/
    border: 1px solid #212121;
    height: 100%;
}
.news .item .img {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
    min-height: 100px;
    overflow: hidden;
}
.news .item .img img {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.news .item .img:hover img {
    -webkit-transform: scale(1.06);
    -moz-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}
.news .item .title {
    font-size: 20px;
    line-height: 1.5;
    margin: 15px 10px;
}
.news .item a:hover {
    text-decoration: none;
}

.social-media-inline a {
    display: inline-block;
    color: var(--red-color);
    font-size: 25px;
    padding: 5px;
    margin: 10px;
    margin-top: 0;
}

.media-news .flex {
    display:-webkit-box;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    display:flex;
/*    align-items: center;*/
/*    justify-content: center;*/
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display:-webkit-flex;
    flex-direction:row;
}
.media-news .item {
    margin-bottom: 30px;
}
.media-news .item p.title {
    text-align: center;
    margin: 10px 0;
    font-style: italic;
    font-weight: 500;
}


.cta-red {
    text-align: center;
    background: var(--red-color);
    display: block;
    padding: 15px;
    color: #fff;
}
.cta-red p {
    font-size: 22px;
    margin: 10px 0;
}
.cta-red a {
    background: #000;
    color: #fff;
}

.cta-red.cta-title {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
}
.cta-red.cta-title h3,
.cta-red.cta-title h2 {
    display: inline-block;
    float: left;
    margin: 10px 0;
    text-align: left;
}
.cta-red.cta-title h3 span,
.cta-red.cta-title h2 span {
    display: block;
    font-size: 22px;
    margin-top: 10px;
    font-weight: 300;
}
.cta-red.cta-title a {
    float: right;
    display: inline-block;
    margin: 20px 0;
}


.vol-roles .row {
    display: -webkit-box;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    display: -webkit-flex;
    flex-direction: row;
}
.vol-roles .item {
    margin-bottom: 20px;
}
.vol-roles .item .box {
    background: var(--grey-color);
    padding: 10px 20px;
    height: 100%;
}
.vol-roles .item h4 {
    color: var(--red-color);
    margin: 10px 0;
}
.vol-roles .item p {
    margin: 10px 0;
}


.faqs-inline .item {
    margin: 15px 0;
    text-align: center;
}
.faqs-inline .item details div {
    text-align: left;
}
.faqs-inline .item summary {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    margin: 5px 0;
    cursor: pointer;
}
.faqs-inline .item summary i {
    font-size: 16px;
    margin-left: 10px;
}


table.table-schedule tr th {
    padding: 12px;
    font-size: 18px;
}
table.table-schedule tr td {
    padding: 12px;
}


